home *** CD-ROM | disk | FTP | other *** search
/ Champak Vol A-4 / (Vol A-4) Vol. A4.iso / Games / smashing.swf / scripts / frame_99 / DoAction.as
Text File  |  2008-03-12  |  210b  |  13 lines

  1. velocity = int((flyToX - menu._x) / 5);
  2. menu._x += velocity;
  3. gameInProgress = false;
  4. if(velocity < 0 or 0 < velocity)
  5. {
  6.    gotoAndPlay(_currentframe - 1);
  7. }
  8. else
  9. {
  10.    gameOver = false;
  11.    stop();
  12. }
  13.